home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / src / RCS / version.c,v < prev    next >
Encoding:
Text File  |  1991-06-25  |  3.4 KB  |  190 lines

  1. head    5.64;
  2. branch    5.64.0;
  3. access;
  4. symbols
  5.     RELEASE:5.64.0.6
  6.     BETA:5.64.0.6
  7.     UICSO:5.64.0
  8.     VANILLA:5.64;
  9. locks; strict;
  10. comment    @ * @;
  11.  
  12.  
  13. 5.64
  14. date    90.06.20.09.16.05;    author paul;    state Exp;
  15. branches
  16.     5.64.0.1;
  17. next    ;
  18.  
  19. 5.64.0.1
  20. date    90.06.20.09.44.21;    author paul;    state Exp;
  21. branches;
  22. next    5.64.0.2;
  23.  
  24. 5.64.0.2
  25. date    90.10.01.23.08.42;    author paul;    state Exp;
  26. branches;
  27. next    5.64.0.3;
  28.  
  29. 5.64.0.3
  30. date    90.12.13.20.13.04;    author paul;    state Exp;
  31. branches;
  32. next    5.64.0.4;
  33.  
  34. 5.64.0.4
  35. date    91.02.17.23.52.36;    author paul;    state Exp;
  36. branches;
  37. next    5.64.0.5;
  38.  
  39. 5.64.0.5
  40. date    91.04.05.13.50.52;    author paul;    state Exp;
  41. branches;
  42. next    5.64.0.6;
  43.  
  44. 5.64.0.6
  45. date    91.04.05.14.55.15;    author paul;    state Exp;
  46. branches;
  47. next    ;
  48.  
  49.  
  50. desc
  51. @@
  52.  
  53.  
  54.  
  55. 5.64
  56. log
  57. @*** empty log message ***
  58. @
  59. text
  60. @/*
  61.  * Copyright (c) 1983 Eric P. Allman
  62.  * Copyright (c) 1988 Regents of the University of California.
  63.  * All rights reserved.
  64.  *
  65.  * Redistribution and use in source and binary forms are permitted provided
  66.  * that: (1) source distributions retain this entire copyright notice and
  67.  * comment, and (2) distributions including binaries display the following
  68.  * acknowledgement:  ``This product includes software developed by the
  69.  * University of California, Berkeley and its contributors'' in the
  70.  * documentation or other materials provided with the distribution and in
  71.  * all advertising materials mentioning features or use of this software.
  72.  * Neither the name of the University nor the names of its contributors may
  73.  * be used to endorse or promote products derived from this software without
  74.  * specific prior written permission.
  75.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  76.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  77.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  78.  */
  79.  
  80. #ifndef lint
  81. static char sccsid[] = "@@(#)version.c    5.64 (Berkeley) 6/1/90";
  82. #endif /* not lint */
  83.  
  84. char    Version[] = "5.64";
  85. @
  86.  
  87.  
  88. 5.64.0.1
  89. log
  90. @IDA patches
  91. @
  92. text
  93. @d25 1
  94. a25 1
  95. char    Version[] = "5.64+";
  96. @
  97.  
  98.  
  99. 5.64.0.2
  100. log
  101. @Changes from Berkeley's 5.64 to 5.65 release (main.c, savemail.c, and
  102. version.c)
  103. @
  104. text
  105. @d22 1
  106. a22 1
  107. static char sccsid[] = "@@(#)version.c    5.65 (Berkeley) 8/29/90";
  108. d25 1
  109. a25 1
  110. char    Version[] = "5.65+";
  111. @
  112.  
  113.  
  114. 5.64.0.3
  115. log
  116. @Replace character "+" in Version string with "a".  If MAIL11V3 is defined,
  117. a "+" will be appended.  The letters will be incremented with significant
  118. source patch.
  119.  
  120. @
  121. text
  122. @d25 1
  123. a25 7
  124. #include "conf.h"
  125.  
  126. #ifdef MAIL11V3
  127. char    Version[] = "5.65a+";
  128. #else /* !MAIL11V3 */
  129. char    Version[] = "5.65a";
  130. #endif /* MAIL11V3 */
  131. @
  132.  
  133.  
  134. 5.64.0.4
  135. log
  136. @ANSIfied sendmail.
  137. @
  138. text
  139. @d28 1
  140. a28 1
  141. char    Version[] = "5.65b+";
  142. d30 1
  143. a30 1
  144. char    Version[] = "5.65b";
  145. @
  146.  
  147.  
  148. 5.64.0.5
  149. log
  150. @Can now show various combinations of Mail11v3, 8bit support, and release
  151. version.
  152. @
  153. text
  154. @a26 10
  155. /*
  156.  * Strings that appear in header lines should be kept short.
  157.  *
  158.  * Current source version: 5.65c
  159.  * If Mail11v3 support is configured, append "+".
  160.  * If 8-bit character set support is configured, append "8".
  161.  * If you're right-handed and the temperature is above freezing, append xyzzy.
  162.  * But I digress.
  163.  */
  164.  
  165. d28 1
  166. a28 5
  167. # ifdef BIT8
  168. char    Version[] = "5.65c8+";
  169. # else /* !BIT8 */
  170. char    Version[] = "5.65c+";
  171. # endif /* BIT8 */
  172. d30 1
  173. a30 5
  174. # ifdef BIT8
  175. char    Version[] = "5.65c8";
  176. # else /* !BIT8 */
  177. char    Version[] = "5.65c";
  178. # endif /* BIT8 */
  179. @
  180.  
  181.  
  182. 5.64.0.6
  183. log
  184. @Added RCS ID string
  185. @
  186. text
  187. @a22 1
  188. static char  rcsid[] = "@@(#)$Id$";
  189. @
  190.